home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Graphic Gems I, II & III (C_C++) / Graphics Gems C Code.sea / GemsI / Src / AALines / Makefile < prev    next >
Makefile  |  1992-06-16  |  462b  |  20 lines

  1. # FILENAME:  Makefile  [revised 18 AUG 90]
  2. # AUTHOR:  Kelvin Thompson
  3. # DESCRIPTION:  Makefile for anti-aliased line rendering demo.
  4.  
  5. # locations of Utah RLE information
  6. UTAH_RLE_INCLUDE_DIR = /public/graphics/rle/include
  7. UTAH_RLE_LIB_FILE = /p/lib/librle.a
  8.  
  9. CFLAGS = -I$(UTAH_RLE_INCLUDE_DIR)
  10.  
  11. OBJS = AAMain.o AALines.o AATables.o utah.o
  12.  
  13. %.o : %.c
  14.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $<
  15.  
  16. AALine : $(OBJS)
  17.     cc $(CFLAGS) -o $@ $(OBJS) $(UTAH_RLE_LIB_FILE) -lm
  18.